home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
docs
/
mod2src
/
modcoms.mod
< prev
next >
Wrap
Text File
|
1986-08-20
|
683b
|
24 lines
(* This is a comment that is prior to the start of the
program itself. *)
MODULE ModComs;
FROM InOut IMPORT WriteLn, WriteString;
(* This is a block
of comments that
illustrate one way
to format some of
your comments. *)
BEGIN (* This is the beginning of the main program *)
WriteString("This is a comments demo program.");
WriteLn;
(* WriteString("This will not be output.");
WriteString("Nor will this."); *)
END ModComs. (* This is the end of the main program *)
(* This is a comment after the end of the program *)